You can declare a lot of variables of a particular type at the same time if you like:

int sheep, goats, cows, pigs ;
/* .. as used by Old MacDonald.. */

The list of variables is separated by the comma character and terminated by the semicolon.

Of course you can't declare variables of different types in the same declaration.